home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / Spider.Form < prev    next >
Text File  |  1994-05-12  |  193b  |  29 lines

  1. Spider
  2. {
  3.     {
  4.         mirrorx
  5.         x1=-5.0
  6.         x2= 5.0
  7.         y1=-5.0
  8.         y2= 5.0
  9.         bailout=2.0
  10.     }
  11.     {
  12.         c=pixel
  13.         z=pixel
  14.     }
  15.     {
  16.         z=z*z
  17.         f=z-c
  18.         r=f*c
  19.         z=pow(r,f)
  20.         z=z+c
  21.         w=abs(z)
  22.     }
  23.     {
  24.         w>bailout
  25.     }
  26.     {
  27.     }
  28. }
  29.